-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace pushd/popd
Calls With -S/-B
CMake Flags in the Build System
#94353
Conversation
for native and clr. Now, looking into removing other instances if possible.
Tagging subscribers to this area: @dotnet/area-infrastructure-libraries Issue DetailsCompletes #93702. With our build system requiring at least CMake version 3.20, we can now use its
|
Tagging subscribers to this area: @hoyosjs Issue DetailsCompletes #93702. With our build system requiring at least CMake version 3.20, we can now use its
|
Well it broke everything as I kind of expected. Now, currently investigating the issue 😄 |
actually not directly related to CMake.
Failure is unrelated, so this PR is now ready for review. |
/azp run runtime |
Azure Pipelines successfully started running 1 pipeline(s). |
Running the normal |
Make sure we don't forget to return the cmake exist code, see #95408.
Failures are unrelated to this change. Merging now. |
Completes #93702. With our build system requiring at least CMake version 3.20, we can now use its
-S
and-B
flags to choose source and build paths, rather than changing directories withpushd
andpopd
. This PR adds this enhancement to the build system.